翻訳と辞書
Words near each other
・ Summary offence
・ Summary order
・ Summary statistics
・ Summasjärvi
・ Summat's Brewin'
・ Summation
・ Summation (disambiguation)
・ Summation (neurophysiology)
・ Summation by parts
・ Summation check
・ Summation equation
・ Summation generator
・ Summation notation
・ Summation of Grandi's series
・ Summative assessment
Summed area table
・ Summer
・ Summer '04
・ Summer '68
・ Summer '87
・ Summer '89
・ Summer (1930 film)
・ Summer (2008 film)
・ Summer (2011 film)
・ Summer (Calvin Harris song)
・ Summer (disambiguation)
・ Summer (George Winston album)
・ Summer (given name)
・ Summer (Harisu album)
・ Summer (Jon Foreman EP)


Dictionary Lists
翻訳と辞書 辞書検索 [ 開発暫定版 ]
スポンサード リンク

Summed area table : ウィキペディア英語版
Summed area table
A summed area table is a data structure and algorithm for quickly and efficiently generating the sum of values in a rectangular subset of a grid. In the image processing domain, it is also known as an integral image. It was first introduced to computer graphics in 1984 by Frank Crow for use with mipmaps. In computer vision it was first prominently used within the Viola–Jones object detection framework in 2001. However, historically, this principle is very well known in the study of multi-dimensional probability distribution functions, namely in computing 2D (or ND) probabilities (area under the probability distribution) from the respective cumulative distribution functions.〔

==The algorithm==

As the name suggests, the value at any point (''x'', ''y'') in the summed area table is just the sum of all the pixels above and to the left of (''x'', ''y''), inclusive:〔
〕〔


: I_(x,y) = \sum_} i(x',y')
Moreover, the summed area table can be computed efficiently in a single pass over the image, using the fact that the value in the summed area table at (''x'', ''y'') is just:
: I(x,y) = i(x,y) + I(x-1,y) + I(x,y-1) - I(x-1,y-1)\,
Once the summed area table has been computed, the task of evaluating the intensities over any rectangular area requires only four array references. This allows for a constant calculation time that is independent of the size of the rectangular area. That is, using the notation in the figure at right, having A=(x0, y0), B=(x1, y0), C=(x0, y1) and D=(x1, y1), the sum of i(x,y) over the rectangle spanned by A, B,C and D is:
: \sum_} i(x,y) = I(D) + I(A) - I(B) - I(C)

抄文引用元・出典: フリー百科事典『 ウィキペディア(Wikipedia)
ウィキペディアで「Summed area table」の詳細全文を読む



スポンサード リンク
翻訳と辞書 : 翻訳のためのインターネットリソース

Copyright(C) kotoba.ne.jp 1997-2016. All Rights Reserved.